        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #e10600;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #ff4d44;
        }
        
        /* Header Styles */
        header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Page Title */
        .page-title {
            max-width: 1200px;
            margin: 30px auto 20px;
            padding: 0 20px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: #1e1e1e;
            margin-bottom: 10px;
        }
        
        .page-title p {
            color: #666;
            font-size: 1.1rem;
        }
        
        /* Drivers Grid */
        .drivers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .driver-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .driver-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .driver-image {
            width: 130px;
            height: 400px;
            overflow: hidden;
            position: relative;
            object-fit: cover;
            margin-left: 90px;
        }
        
        .driver-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .driver-card:hover .driver-image img {
            transform: scale(1.05);
        }
        
        .driver-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .driver-content {
            padding: 20px;
        }
        
        .driver-name {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: #1e1e1e;
        }
        
        .driver-team {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .driver-country {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .driver-country img {
            width: 20px;
            height: 15px;
            margin-right: 8px;
            object-fit: cover;
        }
        
        .driver-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-weight: bold;
            font-size: 1.1rem;
            color: #e10600;
        }
        
        .stat-label {
            font-size: 0.7rem;
            color: #888;
            text-transform: uppercase;
        }
        
        .driver-link {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s;
            font-size: 0.9rem;
        }
        
        .driver-link:hover {
            background: #ff4d44;
            color: white;
        }
        
        /* Team Colors */
        .red-bull { border-top: 4px solid #3671C6; }
        .mercedes { border-top: 4px solid #27F4D2; }
        .ferrari { border-top: 4px solid #F91536; }
        .mclaren { border-top: 4px solid #F58020; }
        .alpine { border-top: 4px solid #2293D1; }
        .aston-martin { border-top: 4px solid #358C75; }
        .alfa-romeo { border-top: 4px solid #C92D4B; }
        .haas { border-top: 4px solid #B6BABD; }
        .alphatauri { border-top: 4px solid #5E8FAA; }
        .williams { border-top: 4px solid #37BEDD; }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .drivers-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 600px) {
            .drivers-container {
                grid-template-columns: 1fr;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
        }